home *** CD-ROM | disk | FTP | other *** search
/ Network PC / Network PC.iso / amiga utilities / graphics / misc / imagedesk3.0 / 68020+ / rexx / default.copyfiles.idesk < prev    next >
Encoding:
Text File  |  1997-11-20  |  375 b   |  25 lines

  1. /* If choosen for the default AREXX script, this script
  2.    will copy all clicked pictures into the directory
  3.    specified below.
  4. */
  5.  
  6. OPTIONS RESULTS
  7.  
  8. PARSE ARG iname itype ipos
  9.  
  10. DestDir = "ram:"
  11. /*         ^- This is the name of the destination directory.
  12.               Edit it for your requirements
  13. */
  14.  
  15.  
  16. ADDRESS COMMAND
  17.  
  18. 'copy 'iname DestDir
  19.  
  20. ADDRESS IDESK_REXXPORT
  21.  
  22. exit
  23.  
  24.  
  25.